home *** CD-ROM | disk | FTP | other *** search
/ Precision Software Appli…tions Silver Collection 4 / Precision Software Applications Silver Collection Volume 4 (1993).iso / new / cl872m.arj / CL872MSG.DOC next >
Text File  |  1993-04-16  |  2KB  |  50 lines

  1. CL872MSG.DOC - A Clipper output filter for Borland's IDE
  2.  
  3. Introduction
  4. ------------
  5. If you are familiar with Borland's IDE, then you can appreciate the value
  6. of the message window error handling.  Spending the majority of my time in
  7. the IDE, I set out to create a better way to develop Clipper code as well.
  8.  
  9. Installation & Usage
  10. --------------------
  11. Just add the CL872MSG.EXE file to your \BORLANDC\BIN directory (wherever you
  12. have BC.EXE installed).  Run BC, and select Options|Transfer.  Move to the
  13. bottom of the list, select Edit and enter the following:
  14.  
  15. Program Title    ~Clipper S87
  16. Program Path     clipper
  17. Command Line     $EDNAME -q $SAVE PROMPT $NOSWAP $CAP MSG(CL872MSG)
  18. Translator       [X]
  19.  
  20. Select Modify and then OK.  That's all you need to do. Don't forget to
  21. Save|Options if you want the IDE to remeber the Transfer list.
  22.  
  23. To use it, load your .PRG file into the editor, and press Alt-Space or
  24. click on the ≡ (System) menu option. Select the new Clipper Compiler option
  25. (that you just added above), and the IDE will compile your program.
  26. After compilation, any errors or warnings will be displayed in a message box.
  27. Alt F7, Alt-F8 will cycle through your errors, positioning the editor on the
  28. line in your source.
  29.  
  30. "Give the hardest job to the laziest man. He'll find the easiest way to do it."
  31.  
  32. If you use Project files, press Ctrl-O on each .PRG file in the project list
  33. and select Clipper as the translator for that file.  If you want to link
  34. your application in the IDE, you're on your own. <smile>
  35.  
  36. The problem with linking Clipper applications is due to a minor *anomoly* in
  37. Borland's linker(s).  For some strange reason, the IDE linker fails to provide
  38. some startup code (Microsoft origin, required by Clipper), but the command line
  39. version (TLINK.EXE v5.1) succeeds by resolving these externals.
  40.  
  41. I've spent many hours trying to pinpoint the problem, and Borland is aware
  42. that there is a *difference*.  Hopefully there will be a day when we can
  43. edit, compile and link Clipper applications using Borland's IDE.
  44.  
  45. Until then, I hope you enjoy this little program as much as I do.  Enjoy !!!
  46.  
  47. The whole idea of this belongs to: Dwayne J. Baldwin (72520,1473). I just
  48. wrote the DOS filter to handle Summer 87 output instead of 5.0 output.
  49.  
  50. Barnaby W. Falls (70662,1523)